home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 July / EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso / earkit / news / thor / hd-install / thor25_arexx.lha / Examples / HitRate.br < prev    next >
Text File  |  1995-09-06  |  375b  |  23 lines

  1. /*  $VER: HitRate.br 3.1 (07.06.94)
  2.  *
  3.  *  Get hitrate for buffer system
  4.  */
  5.  
  6.     if ~show('p', 'BBSREAD') then do
  7.         address command
  8.             "run >nil: `GetEnv THOR/THORPath`bin/LoadBBSRead"
  9.             "WaitForPort BBSREAD"
  10.     end
  11.  
  12.     options results
  13.     address BBSREAD
  14.  
  15.  
  16.     BUFHITRATE RATES
  17.  
  18.     say 'Global hitrate:' result
  19.     say 'Read hitrate:  ' RATES.READ
  20.     say 'Write hitrate: ' RATES.WRITE
  21.  
  22.     exit
  23.